home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rjs.lha / RJS / String / src / op_mult.C < prev    next >
C/C++ Source or Header  |  1991-06-14  |  238b  |  14 lines

  1. #include "String.h"
  2.  
  3. RJS_String operator *(const RJS_String &s, int mult) 
  4. {
  5.    RJS_String result(s);
  6.    return result *= mult;
  7. }
  8.  
  9. RJS_String operator *(int mult,const RJS_String &s)
  10. {
  11.    RJS_String result(s);
  12.    return result *= mult;
  13. }
  14.